home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / bbs_util / bbsedit1.zip / EDITLIST.SCR < prev    next >
Text File  |  1996-02-24  |  545b  |  18 lines

  1. ;
  2. ;This is a sample script file that can be used to determine if BBSEdit is
  3. ;currently editing a BBS list before allowing a user in Telegard to add to
  4. ;it.  You *MUST* pass the name of the BBS list as a parameter to this script.
  5. ;The default BBS list is BBSLIST.
  6. ;
  7.  
  8. FILEEXIST D:\TG3\DATA\@1@.USE GOTO INUSE
  9. FILECREATE D:\TG3\DATA\@1@.USE
  10. FILEPUT "BBS list being edited in Telegard"
  11. FILECLOSE
  12. MENU OA D:\TG3\DATA\@1@
  13. FILEERASE D:\TG3\DATA\@1@.USE
  14. ENDSCRIPT
  15.  
  16. :INUSE
  17. PUTNL "`0CSorry, you can not add to the BBS list at this time!"
  18.